home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / PowerPlant / AGA Classes 1.2 / CheckBox / LAGACheckBox.h < prev   
Text File  |  1996-06-30  |  5KB  |  114 lines

  1. // ===========================================================================
  2. //    LAGACheckBox.h
  3. // ===========================================================================
  4. //    “Apple Grayscale Appearance” compliant check box
  5. //    Copyright © 1996 Chrisoft (Christophe ANDRES)  All rights reserved.
  6. //
  7. //    You may use this source code in any application (commercial, shareware, freeware,
  8. //    postcardware, etc), but not remove this notice (no need to acknowledge the use of
  9. //    this class in the about box)
  10. //    You may not sell this source code in any form. This source code may be placed on 
  11. //    publicly accessable archive sites and source code disks. It may not be placed on 
  12. //    profit archive sites and source code disks without the permission of the author, 
  13. //    Christophe ANDRES.
  14. //    
  15. //        This source code is distributed in the hope that it will be useful,
  16. //        but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. //        MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  18. //
  19. //    If you make any change or improvement on this class, please send the improved/changed
  20. //    version to : chrisoft@calva.net or Christophe ANDRES
  21. //                                     20, rue Prosper Mérimée
  22. //                                     67100 STRASBOURG
  23. //                                     FRANCE
  24. //
  25. // ===========================================================================
  26. //    LAGACheckBox.cp            <- double-click + Command-D to see class implementation
  27. //
  28. //    LAGACheckBox is my implementation of the “Apple Grayscale Appearance for System 7.5”
  29. //        Check box
  30. //
  31. //        This class requires AGAColors.cp to be present in your project
  32. //
  33. //        Version : 1.2
  34. //
  35. //        Change History (most recent first, date in US form : mm/dd/yy):
  36. //
  37. //                        06/30/96    ca        Public release of version 1.2
  38. //                        06/04/96    ca        Added guard macros in header files
  39. //                                                        Increased version to 1.2
  40. //                        05/23/96    ca        Updated the below changes (M™H) to allow the usage of either the standard checkbox template
  41. //                                                            or the custom LAGACheckBox template. The standard checkbox template is easier for layout
  42. //                                                            because you can see the text, but you cannot define directly a mixed value check box
  43. //                                                        Defined class_ID1 and CreateAGACheckBoxStream1 to handle the two template possibilities
  44. //                                                        Added a CPPb to "LAGACheckBox CPPb.rsrc" called LAGACheckBox1 to handle the standard checkbox
  45. //                                                            template, without having to tinker the class ID
  46. //                                                        Added a static RegisterClass method to simplify the class registration
  47. //                        05/23/96    M™H        Changed the stream constructor to use the standard Check box template in Contructor
  48. //                                                            which enables to see the text put in a Check box while defining the view
  49. //                        05/15/96    ca        Increased version to 1.1
  50. //                                                        Added copy constructor
  51. //                                                        Added "on the fly" constructor
  52. //                                                        Added GetDescriptor and SetDescriptor
  53. //                                                        Added SetTextTraitsID and GetTextTraitsID
  54. //                                                        Added change history
  55. //                        04/22/96    ca        class made available by Christophe ANDRES <chrisoft@calva.net>
  56. //                                                        (version 1.0)
  57. //
  58. //        To Do:
  59. //
  60.  
  61. #ifndef _H_LAGACheckBox
  62. #define _H_LAGACheckBox
  63. #pragma once
  64.  
  65. #include    <LStdControl.h>
  66.  
  67. class    LAGACheckBox : public LControl
  68. {
  69.     public        :
  70.         enum { class_ID = 'AGA1', class_ID1 = 'AgA1' };                                                                                                            //    begin <05/23/96 ca>
  71.         static void RegisterClass ();
  72.         static LAGACheckBox* CreateAGACheckBoxStream (LStream *inStream);
  73.         static LAGACheckBox* CreateAGACheckBoxStream1 (LStream *inStream);                                                                    //    end <05/23/96 ca>
  74.     
  75.         LAGACheckBox ();
  76.         
  77.         LAGACheckBox (LStream *inStream, Boolean inCreateWithStdCheckBox = false);                                                    //    <05/23/96 ca>
  78.         
  79.         LAGACheckBox (const LAGACheckBox &inOriginal);                                                                                                            //    <05/15/96 ca>
  80.         
  81.         LAGACheckBox (const SPaneInfo &inPaneInfo, MessageT inValueMessage, Int32 inValue,                                     //    <05/15/96 ca>
  82.                                     ResIDT inTextTraitsID,Str255 inTitle);
  83.                                     
  84.         virtual void SetValue (Int32 inValue);
  85.     
  86.         virtual StringPtr GetDescriptor (Str255 outDescriptor) const;                                                                                //    <05/15/96    ca>
  87.         
  88.         virtual void SetDescriptor (ConstStringPtr inDescriptor);                                                                                        //    <05/15/96    ca>
  89.         
  90.         virtual void SetTextTraitsID (ResIDT inTextTraitsID) { mTextTraitsID = inTextTraitsID; Refresh(); };//    <05/15/96    ca>
  91.         
  92.         virtual ResIDT GetTextTraitsID () { return(mTextTraitsID); };                                                                                //    <05/15/96    ca>
  93.         
  94.     protected    :
  95.         virtual void DrawSelf ();
  96.         
  97.         virtual void DrawGraphic (Boolean inPushed = false);
  98.         
  99.         virtual void DrawText ();
  100.         
  101.         virtual void HotSpotAction (Int16 inHotSpot, Boolean inCurrInside, Boolean inPrevInside);
  102.         
  103.         virtual void HotSpotResult (Int16 inHotSpot);
  104.     
  105.         virtual void DisableSelf () { Refresh(); };
  106.  
  107.         virtual void EnableSelf () { Refresh(); };
  108.  
  109.         LStr255 mTitle;
  110.         ResIDT mTextTraitsID;
  111. };
  112.  
  113. #endif
  114.